home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Jumpstart / Multimedia Microsoft Jumpstart Version 1.1a (Microsoft).BIN / develpmt / source / triq / 4d / makefile < prev    next >
Encoding:
Makefile  |  1992-09-12  |  909 b   |  40 lines

  1. #     (C) Copyright Microsoft Corp. 1991.  All rights reserved.
  2. #
  3. #     You have a royalty-free right to use, modify, reproduce and 
  4. #     distribute the Sample Files (and/or any modified version) in 
  5. #     any way you find useful, provided that you agree that 
  6. #     Microsoft has no warranty obligations or liability for any 
  7. #     Sample Application Files which are modified. 
  8. #
  9.  
  10. CC  = cl -W2 -c -AM -Gsw -Zip -Oas -G2 -DDEBUG -Otw
  11. ASM = masm -Zi -Mx
  12. LINK= link /NOE/CO/LI/MAP
  13. NAME= 4d
  14.  
  15. OBJ = 4d.obj math.obj transfor.obj
  16.  
  17. .c.obj:
  18.         $(CC) $*.c
  19.  
  20. .asm.obj:
  21.         $(ASM) $*;
  22.  
  23. goal: $(NAME).lib
  24.  
  25. $(NAME).lib: $(OBJ)
  26.         del $(NAME).lib
  27.         lib $(NAME).lib + $(OBJ) ;
  28.  
  29. clean:
  30.         del $(NAME).lib
  31.         del *.res
  32.         del *.obj
  33.         del *.map
  34.         del *.sym
  35.  
  36.  
  37. # START Dependencies  
  38.  
  39. 4d.obj: 4d.c 4d.h
  40. transfor.obj: transfor.c transfor.h 4d.h